/*
.body {
    font-family: 'Arial', sans-serif;
    background-color: #f3f4f6;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}
*/


/*
Änderungen L.B., damit es ausschaut wie bei Intrexx
- Alle orginalen CSS-Attribute auskommentiert
*/
.s3UploadContainer, .s3FileListContainer{
    /*align-items: center;
    justify-content: center;
    align-content: center;
    align-self: center;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: 600px;
    min-width: -webkit-fill-available;
    font-family: 'Arial', sans-serif;*/
}


/*
Änderungen L.B., damit es ausschaut wie bei Intrexx
- Alle orginalen CSS-Attribute auskommentiert
*/
.s3upload-section {
    /*display: flex;
    flex-direction: column;*/
    /*gap: 10px;*/
    /*align-items: center;*/
}

/*
Änderungen L.B., damit es ausschaut wie bei Intrexx
- Alle orginalen CSS-Attribute auskommentiert
- CSS-Attribute für den FileInput eingefügt 
*/
.s3fileInput {
    /*padding: 8px;
    border: 2px solid #f90000;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 20px;*/
    border: 1px dashed #DCDCDC;
    margin: 0 0 10px;
    padding: 10px;
    background-color: #ffffff;
    text-align: center;
    list-style-type: none;
    display: inline-block;
    cursor: pointer;
    color: #fff;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
    width: 100%;
}

/*
Änderungen L.B., damit es ausschaut wie bei Intrexx
- opacity 0% eingefügt
- pointer-events: none eingefügt
*/
.s3uploadBtn{
    opacity: 0%;
    pointer-events: none;
}
/*
button {
    
    background-color: #f90000;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #930000;
}
*/

.s3status-message {
    margin-top: 10px;
    font-weight: bold;
    color: #28a745;
}

.s3fileListContainer {
    width: 100%;
    border-collapse: collapse;
}

.s3table-header {
    display: grid;
    grid-template-columns: 100px 1fr 120px;
    font-weight: bold;
    padding: 10px;
    background-color: #f1f1f1;
    border-bottom: 2px solid #ddd;
}

/*
Änderungen L.B., damit es ausschaut wie bei Intrexx
- max-height eingefügt
*/
.s3fileListRow {
    display: grid;
    grid-template-columns: 100px 1fr 120px;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    max-height: 50px;
}

.s3fileListRow:last-child {
    border-bottom: none;
}

/*
Änderungen L.B., damit es ausschaut wie bei Intrexx
- max-height auf 50px statt 80px
- border-radius auskommentiert
*/
.s3fileListImage {
    max-width: 80px;
    max-height: 50px;
    /*border-radius: 6px;*/
}

/*
Änderungen L.B., damit es ausschaut wie bei Intrexx
- Farbe geändert von #f90000 zu #6D6E71
*/
.s3fileListLink {
    text-decoration: none;
    color: #6D6E71;
    font-weight: bold;
}

/*
Änderungen L.B., damit es ausschaut wie bei Intrexx
- Farbe geändert von #930000 zu #de0a2e
*/
.s3fileListLink:hover {
    color: #de0a2e;
}

.s3fileListButton {
    background-color: #f90000;
    color: #fff;
    border: none;
    /*border-radius: 6px;*/
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.s3fileListButton:hover {
    background-color: #930000;
}

/*
Änderungen L.B., damit es ausschaut wie bei Intrexx
- Klassen s3ButtonIcon und s3ButtonIcon:hover erstellt
*/
.s3ButtonIcon{
    border: none;
    background-color: #FFF;
}

.s3ButtonIcon:hover{
    cursor: pointer;
}

/*
Änderungen L.B., Klassen für das Upload Icon
- Klasse für Icon, Input und Label
*/
.upload-icon {
    width: 60px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

input[type="file"]{
    display:none;
}

.s3fileInputLabel{
    border: 1px dashed #DCDCDC;
    margin: 0 0 10px;
    padding: 10px;
    background-color: #ffffff;
    text-align: center;
    list-style-type: none;
    display: inline-block;
    cursor: pointer;
    color: #fff;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}